home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 4
/
Aminet 4 - November 1994.iso
/
aminet
/
dev
/
obero
/
oberon_lib.lha
/
oberon-a
/
source1.lha
/
source
/
Amiga
/
Keyboard.mod
< prev
next >
Wrap
Text File
|
1994-08-08
|
1KB
|
53 lines
(**************************************************************************
$RCSfile: Keyboard.mod $
Description: Interface to keyboard.device
Created by: fjc (Frank Copeland)
$Revision: 3.2 $
$Author: fjc $
$Date: 1994/08/08 00:50:54 $
$VER: keyboard.h 36.0 (1.5.90)
Includes Release 40.15
(C) Copyright 1985-1993 Commodore-Amiga, Inc.
All Rights Reserved
Oberon-A interface Copyright © 1994, Frank Copeland.
This file is part of the Oberon-A Interface.
See Oberon-A.doc for conditions of use and distribution.
***************************************************************************)
MODULE Keyboard;
(*
** $C- CaseChk $I- IndexChk $L+ LongAdr $N- NilChk
** $P- PortableCode $R- RangeChk $S- StackChk $T- TypeChk
** $V- OvflChk $Z- ZeroVars
*)
IMPORT E := Exec;
(*
**
** Keyboard device command definitions
*)
CONST
readEvent * = E.cmdNonstd+0;
readMatrix * = E.cmdNonstd+1;
addResetHandler * = E.cmdNonstd+2;
remResetHandler * = E.cmdNonstd+3;
resetHandlerDone * = E.cmdNonstd+4;
CONST
name * = "keyboard.device";
END Keyboard.